/* null css start */
* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    min-width: 320px;
    position: relative;
    width: 100%;
    color: #000;
    background-color: #FFEFF0;
    font-family: 'Gilroy';
}

body {
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;


}

body.lock {
    overflow: hidden;
}

input,
button,
textarea {
    font-family: 'Gilroy', sans-serif;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

/* null css end */

/* container start */
.container {
    max-width: 1170px;
    margin: 0 auto;
}





/* md3 */
@media (max-width: 1190px) {
    .container {
        max-width: 992px;
    }
}

/* md4 */
@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }
}

/* md5 */
@media (max-width: 768px) {
    .container {
        max-width: none;
        padding: 0 20px;
    }
}

/* md6 */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* container end */

.block {}

.custom-header {
    background-color: #000;
    padding: 20px 0;
    margin-bottom: 20px;
}

.custom-header__logo img {
    width: 286px;
}

@media(max-width: 480px) {
    .custom-header__logo img {
        width: 200px;
    }
}

h1 {
    font-size: 25px;
    margin-bottom: 20px;
}

h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.mb-4 {
    margin-bottom: 10px;
}

p {
    font-size: 16px;
}

footer {
    margin-top: 40px;
}

footer p {
    margin-bottom: 10px;
}

a {
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
    display: block;
}

.button {}

#cookie_notification {
    position: fixed;
    left: 50px;
    margin: auto;
    top: 50px;
    z-index: 100;
    width: 320px;
    padding: 20px;
    border-radius: 25px;
    background-color: #fff;
    border: 1px solid #000;

}

#cookie_notification.none {
    display: none;
}

.cookie_notification-btns {
    display: flex;
    justify-content: space-between;
}

.cookie_accept {
    flex: 0 1 48%;
    background-color: rgba(0, 255, 21, 0.612);
    font-size: 20px;
    height: 30px;
    border-radius: 25px;
    color: #fff;
    cursor: pointer !important;
}

.cookie_reject {
    flex: 0 1 48%;
    cursor: pointer !important;
    font-size: 20px;
    height: 30px;
    border-radius: 25px;
    color: #fff;
    background-color: rgba(255, 0, 0, 0.612);
}

@media(max-width: 480px) {
    #cookie_notification {

        left: 0;
        right: 0;
        margin: auto;

        top: 50px;
        width: 270px;


    }
}